FTP Server : ProFTPD
2017/06/26 |
Install ProFTPD to configure FTP server to transfer files.
|
|
[1] | Install and Configure ProFTPD. |
root@www:~#
apt -y install proftpd
root@www:~#
vi /etc/proftpd/proftpd.conf # line 11: turn off if not need UseIPv6 off
# line 15: change to your hostname ServerName "www.srv.world"
# line 36: uncomment ( specify root directory for chroot ) DefaultRoot ~
root@www:~#
vi /etc/ftpusers # add users you prohibit FTP connection test
systemctl restart proftpd |